+Fri Jun 11 22:05:56 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkfilechooserdefault.c: Don't use
+ contractions like "don't" or "isn't" in error messages.
+ It isn't nice to use them in log entries either...
+ (#137774, Morten Welinder, patch by Alexander Winston)
+
2004-06-11 Federico Mena Quintero <federico@ximian.com>
Fixes #143578:
+Fri Jun 11 22:05:56 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkfilechooserdefault.c: Don't use
+ contractions like "don't" or "isn't" in error messages.
+ It isn't nice to use them in log entries either...
+ (#137774, Morten Welinder, patch by Alexander Winston)
+
2004-06-11 Federico Mena Quintero <federico@ximian.com>
Fixes #143578:
+Fri Jun 11 22:05:56 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkfilechooserdefault.c: Don't use
+ contractions like "don't" or "isn't" in error messages.
+ It isn't nice to use them in log entries either...
+ (#137774, Morten Welinder, patch by Alexander Winston)
+
2004-06-11 Federico Mena Quintero <federico@ximian.com>
Fixes #143578:
+Fri Jun 11 22:05:56 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkfilechooserdefault.c: Don't use
+ contractions like "don't" or "isn't" in error messages.
+ It isn't nice to use them in log entries either...
+ (#137774, Morten Welinder, patch by Alexander Winston)
+
2004-06-11 Federico Mena Quintero <federico@ximian.com>
Fixes #143578:
- Sat Jun 5 00:59:12 2004 Matthias Clasen <maclas@gmx.de>
+Fri Jun 11 22:02:56 2004 Matthias Clasen <maclas@gmx.de>
+
+ * io-gif.c, io-pnm.c, io-tga.c, io-xpm.c: Don't use
+ contractions like "don't" or "isn't" in error messages.
+ It isn't nice to use them in log entries either...
+ (#137774, Morten Welinder, patch by Alexander Winston)
+
+Sat Jun 5 00:59:12 2004 Matthias Clasen <maclas@gmx.de>
Merged from 2.4
g_set_error (context->error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_FAILED,
- _("GIF image loader can't understand this image."));
+ _("GIF image loader cannot understand this image."));
return -2;
if (ZeroDataBlock) {
g_set_error (context->error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
- _("Can't handle PNM files with maximum color values greater than 255"));
+ _("Cannot handle PNM files with maximum color values greater than 255"));
return PNM_FATAL_ERR;
}
}
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate memory for loading PNM image"));
+ _("Cannot allocate memory for loading PNM image"));
return NULL;
}
if (!buffer) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate memory for IOBuffer struct"));
+ _("Cannot allocate memory for IOBuffer struct"));
return NULL;
}
buffer->data = NULL;
if (!buffer->data) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate memory for IOBuffer data"));
+ _("Cannot allocate memory for IOBuffer data"));
g_free(buffer);
return NULL;
}
if (!tmp) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't realloc IOBuffer data"));
+ _("Cannot realloc IOBuffer data"));
g_free(buffer);
return NULL;
}
if (!new_buf) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate temporary IOBuffer data"));
+ _("Cannot allocate temporary IOBuffer data"));
g_free(buffer->data);
g_free(buffer);
return NULL;
if (!ctx->pbuf) {
g_set_error(err, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate new pixbuf"));
+ _("Cannot allocate new pixbuf"));
return FALSE;
}
ctx->cmap = g_try_malloc(sizeof(TGAColormap));
if (!ctx->cmap) {
g_set_error(err, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate colormap structure"));
+ _("Cannot allocate colormap structure"));
return FALSE;
}
ctx->cmap->size = LE16(ctx->hdr->cmap_n_colors);
ctx->cmap->cols = g_try_malloc(sizeof(TGAColor) * ctx->cmap->size);
if (!ctx->cmap->cols) {
g_set_error(err, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate colormap entries"));
+ _("Cannot allocate colormap entries"));
return FALSE;
}
if (!ctx->hdr) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate TGA header memory"));
+ _("Cannot allocate TGA header memory"));
return FALSE;
}
g_memmove(ctx->hdr, ctx->in->data, sizeof(TGAHeader));
if (!ctx) {
g_set_error(err, GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate memory for TGA context struct"));
+ _("Cannot allocate memory for TGA context struct"));
return NULL;
}
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
- _("Can't read XPM colormap"));
+ _("Cannot read XPM colormap"));
g_hash_table_destroy (color_hash);
g_free (name_buf);
g_free (colors);
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
- _("Can't allocate memory for loading XPM image"));
+ _("Cannot allocate memory for loading XPM image"));
g_hash_table_destroy (color_hash);
g_free (colors);
g_free (name_buf);
g_set_error (error,
GTK_FILE_SYSTEM_ERROR,
GTK_FILE_SYSTEM_ERROR_FAILED,
- _("Can't change to folder because it isn't local"));
+ _("Cannot change to folder because it is not local"));
return FALSE;
}